home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / forth / pfe-0.000 / pfe-0 / pfe-0.9.13 / src / config / OSF1 / options.mk
Encoding:
Text File  |  1995-05-08  |  549 b   |  33 lines

  1. #
  2. # OSF1/options.mk ---    part of Makefile PFE, compiler options for DEC OSF/1
  3. #            on an Alpha workstation.
  4.  
  5. PREFIX    = /usr/local
  6. PFELIB    = $(PREFIX)/lib/pfe
  7. PFEHLP    = $(PFELIB)/help
  8.  
  9. # No problems with the DEC compiler or gcc.
  10. # Global register variables work fine. Thus gcc is recommended.
  11.  
  12. SYSTEM    = OSF1
  13.  
  14. CC    = gcc -Wall
  15. OPTIM    = -O2 -fomit-frame-pointer -DUSE_REGS
  16. DEBUG    = -g -O
  17.  
  18. #CC    = cc
  19. #OPTIM    = -O2
  20. #DEBUG    = -g
  21.  
  22. CL    = $(CC)
  23. CPP    = $(CC) -E
  24.  
  25. STRIP    = -s
  26. OPTIONS    = -D_BSD -DUSE_TERMCAP
  27. TERM_O    = termunix$o
  28. SYS_O    = unix$o
  29. LFLAGS    = 
  30. LIBS    = -ltermlib -lm
  31.  
  32.  
  33.